GetPass
GetPass(var Text)
  This function will ask the user to enter a password. The password will be returned when the return key is pressed. This function has one argument which is the text to be displayed before the password input field.
 
  Example:
 

function main()
{
     var Password = GetPass("Enter password:");
     Echo("This is your password: " + Password);
     Pause();
}